home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 44 / PC Actual CD 44.iso / Linux / Cygwin / full.exe / Disk1 / data1.cab / Tools / H-i586-cygwin32 / i586-cygwin32 / include / mingw32 / signal.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-04  |  3.0 KB  |  102 lines

  1. /* 
  2.  * signal.h
  3.  *
  4.  * A way to set handlers for exceptional conditions (also known as signals).
  5.  *
  6.  * This file is part of the Mingw32 package.
  7.  *
  8.  * Contributors:
  9.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  10.  *
  11.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  12.  *
  13.  *  This source code is offered for use in the public domain. You may
  14.  *  use, modify or distribute it freely.
  15.  *
  16.  *  This code is distributed in the hope that it will be useful but
  17.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  18.  *  DISCLAMED. This includes but is not limited to warranties of
  19.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  20.  *
  21.  * $Revision: 1.2 $
  22.  * $Author: noer $
  23.  * $Date: 1998/10/10 00:51:16 $
  24.  *
  25.  */
  26.  
  27. #ifndef    _SIGNAL_H_
  28. #define    _SIGNAL_H_
  29.  
  30. /*
  31.  * The actual signal values. Using other values with signal
  32.  * produces a SIG_ERR return value.
  33.  *
  34.  * NOTE: SIGINT is produced when the user presses Ctrl-C.
  35.  *       SIGILL has not been tested.
  36.  *       SIGFPE doesn't seem to work?
  37.  *       SIGSEGV does not catch writing to a NULL pointer (that shuts down
  38.  *               your app; can you say "segmentation violation core dump"?).
  39.  *       SIGTERM comes from what kind of termination request exactly?
  40.  *       SIGBREAK is indeed produced by pressing Ctrl-Break.
  41.  *       SIGABRT is produced by calling abort.
  42.  * TODO: The above results may be related to not installing an appropriate
  43.  *       structured exception handling frame. Results may be better if I ever
  44.  *       manage to get the SEH stuff down.
  45.  */
  46. #define    SIGINT        2    /* Interactive attention */
  47. #define    SIGILL        4    /* Illegal instruction */
  48. #define    SIGFPE        8    /* Floating point error */
  49. #define    SIGSEGV        11    /* Segmentation violation */
  50. #define    SIGTERM        15    /* Termination request */
  51. #define SIGBREAK    21    /* Control-break */
  52. #define    SIGABRT        22    /* Abnormal termination (abort) */
  53.  
  54. /*
  55.  * The prototypes (below) are the easy part. The hard part is figuring
  56.  * out what signals are available and what numbers they are assigned
  57.  * along with appropriate values of SIG_DFL and SIG_IGN.
  58.  */
  59.  
  60. #ifndef    RC_INVOKED
  61.  
  62. /*
  63.  * A pointer to a signal handler function. A signal handler takes a
  64.  * single int, which is the signal it handles.
  65.  */
  66. typedef    void (*_p_sig_fn_t)(int nSig);
  67.  
  68. /*
  69.  * These are special values of signal handler pointers which are
  70.  * used to send a signal to the default handler (SIG_DFL), ignore
  71.  * the signal (SIG_IGN), or indicate an error return (SIG_ERR).
  72.  */
  73. #define    SIG_DFL    ((_p_sig_fn_t) 0)
  74. #define    SIG_IGN    ((_p_sig_fn_t) 1)
  75. #define    SIG_ERR ((_p_sig_fn_t) -1)
  76.  
  77. #ifdef    __cplusplus
  78. extern "C" {
  79. #endif
  80.  
  81. /*
  82.  * Call signal to set the signal handler for signal sig to the
  83.  * function pointed to by handler. Returns a pointer to the
  84.  * previous handler, or SIG_ERR if an error occurs. Initially
  85.  * unhandled signals defined above will return SIG_DFL.
  86.  */
  87. _p_sig_fn_t    signal(int sig, _p_sig_fn_t handler);
  88.  
  89. /*
  90.  * Raise the signal indicated by sig. Returns non-zero on success.
  91.  */
  92. int    raise (int sig);
  93.  
  94. #ifdef    __cplusplus
  95. }
  96. #endif
  97.  
  98. #endif    /* Not RC_INVOKED */
  99.  
  100. #endif    /* Not _SIGNAL_H_ */
  101.  
  102.